net/http.http2serverConn.streams (field)

11 uses

	net/http (current package)
		h2_bundle.go#L4086: 		streams:                     make(map[uint32]*http2stream),
		h2_bundle.go#L4239: 	streams                     map[uint32]*http2stream
		h2_bundle.go#L4324: 	if st, ok := sc.streams[streamID]; ok {
		h2_bundle.go#L4504: 	for _, st := range sc.streams {
		h2_bundle.go#L4954: 			if st, ok := sc.streams[v.StreamID]; ok {
		h2_bundle.go#L5072: 	if st, ok := sc.streams[se.StreamID]; ok {
		h2_bundle.go#L5257: 	delete(sc.streams, st.id)
		h2_bundle.go#L5258: 	if len(sc.streams) == 0 {
		h2_bundle.go#L5353: 	for _, st := range sc.streams {
		h2_bundle.go#L5541: 	if st := sc.streams[f.StreamID]; st != nil {
		h2_bundle.go#L5712: 	sc.streams[id] = st